-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
TST: Refactor S3 tests #61703
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TST: Refactor S3 tests #61703
Conversation
@@ -2116,3 +2116,9 @@ def temp_file(tmp_path): | |||
file_path = tmp_path / str(uuid.uuid4()) | |||
file_path.touch() | |||
return file_path | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
requests = pytest.importorskip("requests") | ||
pytest.importorskip("moto") | ||
pytest.importorskip("flask") # server mode needs flask too |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove requests
and flask
from our environment.yaml
or CI dependency files now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
requests
is used in web building and tests.
Thanks @fangchenli |
doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.